home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEQuit.au3 < prev    next >
Text File  |  2006-07-14  |  506b  |  11 lines

  1. ; *******************************************************
  2. ; Example 1 - Create an invisible browser window, navigate to a
  3. ;                website, retrieve some information and Quit
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IECreate ("http://sourceforge.net", 0, 0)
  8. ; Display the innerText on an element on the page with a name of "sfmarquee"
  9. $oMarquee = _IEGetObjByName ($oIE, "sfmarquee")
  10. MsgBox(0, "SourceForge Information", $oMarquee.innerText)
  11. _IEQuit ($oIE)